home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / shadow-3.1.4 / lastlog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-28  |  511 b   |  23 lines

  1. /*
  2.  * Copyright 1989, 1990, John F. Haugh II
  3.  * All rights reserved.
  4.  *
  5.  * Use, duplication, and disclosure prohibited without
  6.  * the express written permission of the author.
  7.  */
  8.  
  9. /*
  10.  * lastlog.h - structure of lastlog file
  11.  *
  12.  *    @(#)lastlog.h    3.1    11:30:22    12/3/91
  13.  *
  14.  *    This file defines a lastlog file structure which should be sufficient
  15.  *    to hold the information required by login.  It should only be used if
  16.  *    there is no real lastlog.h file.
  17.  */
  18.  
  19. struct    lastlog    {
  20.     time_t    ll_time;
  21.     char    ll_line[8];
  22. };
  23.